home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htslib.h < prev    next >
C/C++ Source or Header  |  2006-04-09  |  20KB  |  541 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Subroutines .h                                         */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier librairie .h
  38.  
  39. #ifndef HTS_DEFH
  40. #define HTS_DEFH 
  41.  
  42. /* dΘfinitions globales */
  43. #include "htsglobal.h"
  44.  
  45. /* basic net definitions */
  46. #include "htsbase.h"
  47. #include "htsbasenet.h"
  48. #include "htsnet.h"
  49.  
  50. /* cookies et auth */
  51. #include "htsbauth.h"
  52.  
  53. // Attention, dΘfinition existante Θgalement dans le shell
  54. // (α modifier avec celle-ci)
  55. #define POSTTOK "?>post"
  56.  
  57. #include "htsopt.h"
  58.  
  59. #define READ_ERROR (-1)
  60. #define READ_EOF (-2)
  61. #define READ_TIMEOUT (-3)
  62. #define READ_INTERNAL_ERROR (-4)
  63.  
  64. // structure pour paramΦtres supplΘmentaires lors de la requΩte
  65. typedef struct htsrequest {
  66.   short int user_agent_send;  // user agent (ex: httrack/1.0 [sun])
  67.   short int http11;           // l'en tΩte peut (doit) Ωtre signΘ HTTP/1.1 et non HTTP/1.0
  68.   short int nokeepalive;      // pas de keep-alive
  69.   short int range_used;       // Range utilisΘ
  70.   short int nocompression;    // Pas de compression
  71.   short int flush_garbage;    // recycled
  72.   char user_agent[128];
  73.   char referer[256];
  74.   char from[256];
  75.   char lang_iso[64];
  76.   t_proxy proxy;              // proxy
  77. } htsrequest;
  78.  
  79.  
  80. // structure pour retour d'une connexion/prise d'en tΩte
  81. typedef struct htsblk {
  82.   int statuscode;        // status-code, -1=erreur, 200=OK,201=..etc (cf RFC1945)
  83.   short int notmodified; // page ou fichier NON modifiΘ (transfΘrΘ)
  84.   short int is_write;    // sortie sur disque (out) ou en mΘmoire (adr)
  85.   short int is_chunk;    // mode chunk
  86.   short int compressed;  // compressΘ?
  87.   short int empty;       // vide?
  88.   short int keep_alive;  // Keep-Alive?
  89.   short int keep_alive_trailers;  // ..with trailers extension
  90.   int keep_alive_t;      // KA timeout
  91.   int keep_alive_max;    // KA number of requests
  92.   char* adr;             // adresse du bloc de mΘmoire, NULL=vide
  93.   char* headers;         // adresse des en tΩtes si prΘsents
  94.   FILE* out;             // Θcriture directe sur disque (si is_write=1)
  95.   LLint size;            // taille fichier
  96.   char msg[80];          // message Θventuel si Θchec ("\0"=non prΘcisΘ)
  97.   char contenttype[64];  // content-type ("text/html" par exemple)
  98.   char charset[64];      // charset ("iso-8859-1" par exemple)
  99.   char contentencoding[64];  // content-encoding ("gzip" par exemple)
  100.   char* location;        // on copie dedans Θventuellement la vΘritable 'location'
  101.   LLint totalsize;       // taille totale α tΘlΘcharger (-1=inconnue)
  102.   short int is_file;     // ce n'est pas une socket mais un descripteur de fichier si 1
  103.   T_SOC soc;             // ID socket
  104.   SOCaddr address;       // IP address
  105.   int     address_size;  // IP address structure length
  106.   FILE* fp;              // fichier pour file://
  107. #if HTS_USEOPENSSL
  108.   short int ssl;         // is this connection a SSL one? (https)
  109.   // BIO* ssl_soc;          // SSL structure
  110.   SSL * ssl_con;         // connection structure
  111. #endif
  112.   char lastmodified[64]; // Last-Modified
  113.   char etag[64];         // Etag
  114.   char cdispo[256];      // Content-Disposition coupΘ
  115.   LLint  crange;         // Content-Range
  116.   int debugid;           // debug connection
  117.   /* */
  118.   htsrequest req;        // paramΦtres pour la requΩte
  119.   /*char digest[32+2];   // digest md5 gΘnΘrΘ par le moteur ("" si non gΘnΘrΘ)*/
  120. } htsblk;
  121.  
  122.  
  123. /* ANCIENNE STURCTURE pour cache 1.0 */
  124. typedef struct {
  125.   int active;
  126.   char name[1024];
  127.   int port;
  128. } OLD_t_proxy; 
  129. typedef struct {
  130.   int statuscode;  // ANCIENNE STURCTURE - status-code, -1=erreur, 200=OK,201=..etc (cf RFC1945)
  131.   int notmodified; // ANCIENNE STURCTURE - page ou fichier NON modifiΘ (transfΘrΘ)
  132.   int is_write;    // ANCIENNE STURCTURE - sortie sur disque (out) ou en mΘmoire (adr)
  133.   char* adr;       // ANCIENNE STURCTURE - adresse du bloc de mΘmoire, NULL=vide
  134.   FILE* out;       // ANCIENNE STURCTURE - Θcriture directe sur disque (si is_write=1)
  135.   int size;        // ANCIENNE STURCTURE - taille fichier
  136.   char msg[80];    // ANCIENNE STURCTURE - message Θventuel si Θchec ("\0"=non prΘcisΘ)
  137.   char contenttype[64];  // ANCIENNE STURCTURE - content-type ("text/html" par exemple)
  138.   char* location;  // ANCIENNE STURCTURE - on copie dedans Θventuellement la vΘritable 'location'
  139.   int totalsize;   // ANCIENNE STURCTURE - taille totale α tΘlΘcharger (-1=inconnue)
  140.   int is_file;     // ANCIENNE STURCTURE - ce n'est pas une socket mais un descripteur de fichier si 1
  141.   T_SOC soc;       // ANCIENNE STURCTURE - ID socket
  142.   FILE* fp;        // ANCIENNE STURCTURE - fichier pour file://
  143.   OLD_t_proxy proxy;   // ANCIENNE STURCTURE - proxy
  144.   int user_agent_send;  // ANCIENNE STURCTURE - user agent (ex: httrack/1.0 [sun])
  145.   char user_agent[64];
  146.   int http11;           // ANCIENNE STURCTURE - l'en tΩte doit Ωtre signΘ HTTP/1.1 et non HTTP/1.0
  147. } OLD_htsblk;
  148. /* fin ANCIENNE STURCTURE pour cache 1.0 */
  149.  
  150. // cache pour le dns, pour Θviter de faire des gethostbyname sans arrΩt
  151. typedef struct t_dnscache {
  152.   char iadr[1024];
  153.   struct t_dnscache* n;
  154.   char host_addr[HTS_MAXADDRLEN];    // 4 octets (v4), ou 16 octets (v6)
  155.   int host_length;                   // 4 normalement - ==0  alors en cours de rΘsolution
  156.                                      // ou >16 si sockaddr
  157.                                      //                 ==-1 alors erreur (host n'Θxiste pas)
  158. } t_dnscache;
  159.  
  160.  
  161.  
  162. /* Library internal definictions */
  163. #ifdef HTS_INTERNAL_BYTECODE
  164.  
  165. // fonctions unix/winsock
  166. int hts_read(htsblk* r,char* buff,int size);
  167. //int HTS_TOTAL_RECV_CHECK(int var);
  168. LLint check_downloadable_bytes(int rate);
  169.  
  170. #ifndef HTTRACK_DEFLIB
  171. HTSEXT_API int hts_init(void);
  172. HTSEXT_API int hts_uninit(void);
  173. #endif
  174.  
  175. // fonctions principales
  176. int http_fopen(char* adr,char* fil,htsblk* retour);
  177. int http_xfopen(int mode,int treat,int waitconnect,char* xsend,char* adr,char* fil,htsblk* retour);
  178. int http_sendhead(t_cookie* cookie,int mode,char* xsend,char* adr,char* fil,char* referer_adr,char* referer_fil,htsblk* retour);
  179. htsblk httpget(char* url);
  180. //int newhttp(char* iadr,char* err=NULL);
  181. int newhttp(char* iadr,htsblk* retour,int port,int waitconnect);
  182. HTS_INLINE void deletehttp(htsblk* r);
  183. HTS_INLINE int  deleteaddr(htsblk* r);
  184. HTS_INLINE void deletesoc(T_SOC soc);
  185. HTS_INLINE void deletesoc_r(htsblk* r);
  186. htsblk http_location(char* adr,char* fil,char* loc);
  187. htsblk http_test(char* adr,char* fil,char* loc);
  188. int check_readinput(htsblk* r);
  189. int check_readinput_t(T_SOC soc, int timeout);
  190. void http_fread(T_SOC soc,htsblk* retour);
  191. LLint http_fread1(htsblk* r);
  192. void treathead(t_cookie* cookie,char* adr,char* fil,htsblk* retour,char* rcvd);
  193. void treatfirstline(htsblk* retour,char* rcvd);
  194. #ifndef HTTRACK_DEFLIB
  195. HTSEXT_API void infostatuscode(char* msg,int statuscode);
  196. #endif
  197.  
  198. // sous-fonctions
  199. htsblk xhttpget(char* adr,char* fil);
  200. htsblk http_gethead(char* adr,char* fil);
  201. LLint http_xfread1(htsblk* r,int bufl);
  202. HTS_INLINE t_hostent* hts_gethostbyname(char* iadr, void* v_buffer);
  203. #ifndef HTTRACK_DEFLIB
  204. HTSEXT_API t_hostent* vxgethostbyname(char* hostname, void* v_buffer);
  205. #endif
  206. t_hostent* _hts_ghbn(t_dnscache* cache,char* iadr,t_hostent* retour);
  207. int ftp_available(void);
  208. #if HTS_DNSCACHE
  209. void hts_cache_free(t_dnscache* cache);
  210. int hts_dnstest(char* _iadr);
  211. t_dnscache* _hts_cache(void);
  212. int _hts_lockdns(int i);
  213. #endif
  214.  
  215. // outils divers
  216. HTS_INLINE TStamp time_local(void);
  217. #ifndef HTTRACK_DEFLIB
  218. HTSEXT_API HTS_INLINE TStamp mtime_local(void);
  219. #endif
  220. void sec2str(char *s,TStamp t);
  221. #ifndef HTTRACK_DEFLIB
  222. HTSEXT_API void qsec2str(char *st,TStamp t);
  223. #endif
  224. void time_gmt_rfc822(char* s);
  225. void time_local_rfc822(char* s);
  226. struct tm* convert_time_rfc822(char* s);
  227. int set_filetime(char* file,struct tm* tm_time);
  228. int set_filetime_rfc822(char* file,char* date);
  229. int get_filetime_rfc822(char* file,char* date);
  230. HTS_INLINE void time_rfc822(char* s,struct tm * A);
  231. HTS_INLINE void time_rfc822_local(char* s,struct tm * A);
  232. #ifndef HTTRACK_DEFLIB
  233. HTSEXT_API char* int2char(int n);
  234. HTSEXT_API char* int2bytes(LLint n);
  235. HTSEXT_API char* int2bytessec(long int n);
  236. HTSEXT_API char** int2bytes2(LLint n);
  237. #endif
  238. HTS_INLINE int sendc(htsblk* r, char* s);
  239. int finput(int fd,char* s,int max);
  240. int binput(char* buff,char* s,int max);
  241. int linput(FILE* fp,char* s,int max);
  242. int linputsoc(T_SOC soc, char* s, int max);
  243. int linputsoc_t(T_SOC soc, char* s, int max, int timeout);
  244. int linput_trim(FILE* fp,char* s,int max);
  245. int linput_cpp(FILE* fp,char* s,int max);
  246. void rawlinput(FILE* fp,char* s,int max);
  247. char* strstrcase(char *s,char *o);
  248. int ident_url_absolute(char* url,char* adr,char* fil);
  249. void fil_simplifie(char* f);
  250. int is_unicode_utf8(unsigned char* buffer, unsigned int size);
  251. void map_characters(unsigned char* buffer, unsigned int size, unsigned int* map);
  252. int ishtml(const char* urlfil);
  253. int ishtml_ext(const char* a);
  254. int ishttperror(int err);
  255. void guess_httptype(char *s,const char *fil);
  256. void get_httptype(char *s,const char *fil,int flag);
  257. int get_userhttptype(int setdefs,char *s,const char *fil);
  258. void give_mimext(char *s,const char *st);
  259. int is_knowntype(const char *fil);
  260. int is_userknowntype(const char *fil);
  261. int is_dyntype(const char *fil);
  262. char* get_ext(const char *fil);
  263. int may_unknown(const char* st);
  264. #ifndef HTTRACK_DEFLIB
  265. HTSEXT_API char* jump_identification(char*);
  266. HTSEXT_API char* jump_normalized(char*);
  267. HTSEXT_API char* jump_toport(char*);
  268. HTSEXT_API char* fil_normalized(char* source, char* dest);
  269. HTSEXT_API char* adr_normalized(char* source, char* dest);
  270. #endif
  271. char* strrchr_limit(char* s, char c, char* limit);
  272. char* strstr_limit(char* s, char* sub, char* limit);
  273. HTS_INLINE char* jump_protocol(char* source);
  274. void code64(unsigned char* a,int size_a,unsigned char* b,int crlf);
  275. #ifndef HTTRACK_DEFLIB
  276. HTSEXT_API void unescape_amp(char* s);
  277. HTSEXT_API void escape_spc_url(char* s);
  278. HTSEXT_API void escape_in_url(char* s);
  279. HTSEXT_API void escape_uri(char* s);
  280. HTSEXT_API void escape_uri_utf(char* s);
  281. HTSEXT_API void escape_check_url(char* s);
  282. HTSEXT_API char* escape_check_url_addr(char* s);
  283. HTSEXT_API void x_escape_http(char* s,int mode);
  284. HTSEXT_API void x_escape_html(char* s);
  285. HTSEXT_API void escape_remove_control(char* s);
  286. HTSEXT_API void escape_for_html_print(char* s, char* d);
  287. HTSEXT_API void escape_for_html_print_full(char* s, char* d);
  288. #endif
  289. #ifndef HTTRACK_DEFLIB
  290. HTSEXT_API char* unescape_http(char* s);
  291. HTSEXT_API char* unescape_http_unharm(char* s, int no_high);
  292. HTSEXT_API char* antislash_unescaped(char* s);
  293. #endif
  294. char* concat(const char* a,const char* b);
  295. #define copychar(a) concat((a),NULL)
  296. #if HTS_DOSNAME
  297. char* fconcat(char* a,char* b);
  298. char* fconv(char* a);
  299. #else
  300. #define fconv(a) (a)
  301. #define fconcat(a,b) concat(a,b)
  302. #endif
  303. char* fslash(char* a);
  304. char* __fslash(char* a);
  305.  
  306. char* convtolower(char* a);
  307. char* concat(const char* a,const char* b);
  308. void hts_lowcase(char* s);
  309. void hts_replace(char *s,char from,char to);
  310.  
  311.  
  312. void fprintfio(FILE* fp,char* buff,char* prefix);
  313.  
  314. #if HTS_WIN
  315. #else
  316. int sig_ignore_flag( int setflag );     // flag ignore
  317. #endif
  318.  
  319. void cut_path(char* fullpath,char* path,char* pname);
  320. int fexist(char* s);
  321. /*LLint fsize(char* s);    */
  322. INTsys fpsize(FILE* fp);
  323. INTsys fsize(char* s);    
  324. /* root dir */
  325. #ifndef HTTRACK_DEFLIB
  326. HTSEXT_API char* hts_rootdir(char* file);
  327. #endif
  328.  
  329. // Threads
  330. #if USE_PTHREAD
  331. typedef void* ( *beginthread_type )( void * );
  332. unsigned long _beginthread( beginthread_type start_address, unsigned stack_size, void *arglist );
  333. #endif
  334.  
  335.  
  336.  
  337.  
  338. /* variables globales */
  339. //extern LLint HTS_TOTAL_RECV;  // flux entrant reτu
  340. //extern int HTS_TOTAL_RECV_STATE;  // status: 0 tout va bien 1: ralentir un peu 2: ralentir 3: beaucoup
  341. extern HTSEXT_API hts_stat_struct HTS_STAT;
  342. extern int _DEBUG_HEAD;
  343. extern FILE* ioinfo;
  344.  
  345. /* constantes */
  346. extern const char* hts_mime_keep[];
  347. extern const char* hts_mime[][2];
  348. extern const char* hts_main_mime[];
  349. extern const char* hts_detect[];
  350. extern const char* hts_detectbeg[];
  351. extern const char* hts_nodetect[];
  352. extern const char* hts_detectURL[];
  353. extern const char* hts_detectandleave[];
  354. extern const char* hts_detect_js[];
  355.  
  356. // defaut wrappers
  357. void  __cdecl htsdefault_init(void);
  358. void  __cdecl htsdefault_uninit(void);
  359. int   __cdecl htsdefault_start(void* opt);
  360. int   __cdecl htsdefault_chopt(void* opt);
  361. int   __cdecl htsdefault_end(void);
  362. int   __cdecl htsdefault_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier);
  363. int   __cdecl htsdefault_postprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier);
  364. int   __cdecl htsdefault_checkhtml(char* html,int len,char* url_adresse,char* url_fichier);
  365. int   __cdecl htsdefault_loop(void* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time,hts_stat_struct* stats);
  366. char* __cdecl htsdefault_query(char* question);
  367. char* __cdecl htsdefault_query2(char* question);
  368. char* __cdecl htsdefault_query3(char* question);
  369. int   __cdecl htsdefault_check(char* adr,char* fil,int status);
  370. int   __cdecl htsdefault_check_mime(char* adr,char* fil,char* mime,int status);
  371. void  __cdecl htsdefault_pause(char* lockfile);
  372. void  __cdecl htsdefault_filesave(char*);
  373. void  __cdecl htsdefault_filesave2(char* adr, char* file, char* sav, int is_new, int is_modified,int not_updated);
  374. int   __cdecl htsdefault_linkdetected(char* link);
  375. int   __cdecl htsdefault_linkdetected2(char* link, char* tag_start);
  376. int   __cdecl htsdefault_xfrstatus(void* back);
  377. int   __cdecl htsdefault_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save);
  378. int   __cdecl htsdefault_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing);
  379. int   __cdecl htsdefault_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming);
  380.  
  381. // end defaut wrappers
  382.  
  383.  
  384. // htsmodule.c definitions
  385. extern void* getFunctionPtr(httrackp* opt, char* file, char* fncname);
  386. extern void clearCallbacks(htscallbacks* chain);
  387.  
  388.  
  389.  
  390. #endif    // internals
  391.  
  392.  
  393. /* Spaces: CR,LF,TAB,FF */
  394. #define  is_space(c)      ( ((c)==' ') || ((c)=='\"') || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11) || ((c)=='\'') )
  395. #define  is_realspace(c)  ( ((c)==' ')                || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11)                )
  396. #define  is_taborspace(c) ( ((c)==' ')                                          || ((c)==9)                             )
  397. #define  is_quote(c)      (               ((c)=='\"')                                                    || ((c)=='\'') )
  398. #define  is_retorsep(c)   (                              ((c)==10) || ((c)==13) || ((c)==9)                                          )
  399. //HTS_INLINE int is_space(char);
  400. //HTS_INLINE int is_realspace(char);
  401.  
  402. #define HTTP_IS_REDIRECT(code) ( \
  403.      (code) == 301               \
  404.   || (code) == 302               \
  405.   || (code) == 303               \
  406.   || (code) == 307               \
  407.   )
  408. #define HTTP_IS_NOTMODIFIED(code) ( \
  409.      (code) == 304               \
  410.   )
  411. #define HTTP_IS_OK(code) ( ( (code) / 100 ) == 2 )
  412. #define HTTP_IS_ERROR(code) ( !HTTP_IS_OK(code) && !HTTP_IS_REDIRECT(code) && !HTTP_IS_NOTMODIFIED(code) )
  413.  
  414. // compare le dΘbut de f avec s et retourne la position de la fin
  415. // 'A=a' (case insensitive)
  416. static int strfield(const char* f,const char* s) {
  417.   int r=0;
  418.   while (streql(*f,*s) && ((*f)!=0) && ((*s)!=0)) { f++; s++; r++; }
  419.   if (*s==0)
  420.     return r;
  421.   else
  422.     return 0;
  423. }
  424. static int strcmpnocase(char* a,char* b) {
  425.   while(*a) {
  426.     int cmp = hichar(*a) - hichar(*b);
  427.     if (cmp != 0)
  428.       return cmp;
  429.     a++;
  430.     b++;
  431.   }
  432.   return 0;
  433. }
  434.  
  435. #ifdef _WIN32
  436. #define strcasecmp(a,b) stricmp(a,b)
  437. #define strncasecmp(a,b,n) strnicmp(a,b,n)
  438. #endif
  439.  
  440. #define strfield2(f,s) ( (strlen(f)!=strlen(s)) ? 0 : (strfield(f,s)) )
  441.  
  442. // is this MIME an hypertext MIME (text/html), html/js-style or other script/text type?
  443. #define HTS_HYPERTEXT_DEFAULT_MIME "text/html"
  444.  
  445. #if HTS_USEMMS
  446. #define OPT_MMS(a) (strfield2((a), "video/x-ms-asf") != 0)
  447. #else
  448. #define OPT_MMS(a) (false)
  449. #endif
  450. #define is_hypertext_mime__(a) \
  451.   ( (strfield2((a),"text/html")!=0)\
  452.   || (strfield2((a),"application/x-javascript")!=0) \
  453.   || (strfield2((a),"text/css")!=0) \
  454.   /*|| (strfield2((a),"text/vnd.wap.wml")!=0)*/ \
  455.   || (strfield2((a),"image/svg+xml")!=0) \
  456.   || (strfield2((a),"image/svg-xml")!=0) \
  457.   /*|| (strfield2((a),"audio/x-pn-realaudio")!=0) */\
  458.   || (strfield2((a),"application/x-authorware-map")!=0) \
  459.   )
  460. #define may_be_hypertext_mime__(a) \
  461.    (\
  462.      (strfield2((a),"audio/x-pn-realaudio")!=0) \
  463.      || (strfield2((a),"audio/x-mpegurl")!=0) \
  464.      || OPT_MMS(a) \
  465.   )
  466.  
  467.  
  468. /* Library internal definictions */
  469. #ifdef HTS_INTERNAL_BYTECODE
  470.  
  471. // check if (mime, file) is hypertext
  472. static int is_hypertext_mime(const char* mime, const char* file) {
  473.   if (is_hypertext_mime__(mime))
  474.     return 1;
  475.   if (may_unknown(mime)) {
  476.     char guessed[256];
  477.     guessed[0] = '\0';
  478.     guess_httptype(guessed, file);
  479.     return is_hypertext_mime__(guessed);
  480.   }
  481.   return 0;
  482. }
  483.  
  484. // check if (mime, file) might be "false" hypertext
  485. static int may_be_hypertext_mime(const char* mime, const char* file) {
  486.   if (may_be_hypertext_mime__(mime))
  487.     return 1;
  488.   if (file != NULL && file[0] != '\0' && may_unknown(mime)) {
  489.     char guessed[256];
  490.     guessed[0] = '\0';
  491.     guess_httptype(guessed, file);
  492.     return may_be_hypertext_mime__(guessed);
  493.   }
  494.   return 0;
  495. }
  496.  
  497. // compare (mime, file) with reference
  498. static int compare_mime(const char* mime, const char* file, const char* reference) {
  499.   if (is_hypertext_mime__(mime) || may_be_hypertext_mime__(mime))
  500.     return strfield2(mime, reference);
  501.   if (file != NULL && file[0] != '\0' && may_unknown(mime)) {
  502.     char guessed[256];
  503.     guessed[0] = '\0';
  504.     guess_httptype(guessed, file);
  505.     return strfield2(guessed, reference);
  506.   }
  507.   return 0;
  508. }
  509.  
  510. #endif
  511.  
  512. #ifdef _WIN32_WCE_XXC
  513. extern char cwd[MAX_PATH+1];
  514. static char *getcwd_ce(char *buffer, int maxlen)
  515. {
  516.     TCHAR fileUnc[MAX_PATH+1];
  517.     char* plast;
  518.     
  519.     if(cwd[0] == 0)
  520.     {
  521.         GetModuleFileName(NULL, fileUnc, MAX_PATH);
  522.         WideCharToMultiByte(CP_ACP, 0, fileUnc, -1, cwd, MAX_PATH, NULL, NULL);
  523.         plast = strrchr(cwd, '\\');
  524.         if(plast)
  525.             *plast = 0;
  526.         /* Special trick to keep start menu clean... */
  527.         if(_stricmp(cwd, "\\windows\\start menu") == 0)
  528.             strcpy(cwd, "\\Apps");
  529.     }
  530.     if(buffer)
  531.         strncpy(buffer, cwd, maxlen);
  532.     return cwd;
  533. }
  534. #undef getcwd
  535. #define getcwd getcwd_ce
  536. #endif
  537.  
  538. #endif
  539.  
  540.  
  541.